Setting Themes at the Organization Level |
|
This feature is available only if you can do any of the following:
|
Organization level theme helps incorporate certain custom styling features at the organization level. It is one of the key business requirements for certain deployment scenarios. Consider a cloud deployment model in which a single application deployed on a cloud is being used by multiple tenants. Organization level theme allows you to customize, test, and deploy organization-specific theme packs for each tenant in the cloud according to specific application requirements.
The theme-pack files for an organization are stored in the Web server. These files can be of type Javascript(js), Web pages (HTM, HTML), images, icons (gif, png, jpg, bmp) and cascading style sheets(css). In Process Platform, the most commonly used theme-packs comprise of cascading style sheets, images, and, icons.
When you access a custom application developed using Process Platform, the corresponding themes will be applied to the application from the respective organization.
Note:
webroot | - shared | - images | - cordys.gif | - organization | - dummyORG (your organization) | - images |- icon.gif | - example | - x.htm
<html> <body> <img src="../images/icon.gif"/> <!-- relative to page folder --> <img src="../images/cordys.gif"/> </body> </html>
<html> <head> <import src="../wcp/application.js"/> <!-- only real relative reference --> </head> <body> <img src="images/icon.gif"/> <!-- relative to application root --> <img src="images/cordys.gif"/> </body> </html>